home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Complete Applications / Othello C Source / drawboard.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-09-13  |  1.3 KB  |  56 lines  |  [TEXT/ttxt]

  1. /* drawboard.c - DrawBoard */
  2.  
  3. # include    "mac/quickdraw.h"
  4. # include    "mac/osintf.h"
  5. # include    "mac/toolintf.h"
  6. # include    "othello.h"
  7.  
  8. /*
  9.  * DrawBoard:
  10.  *    Draw the playing board.
  11.  */
  12.  
  13. DrawBoard()
  14. {
  15.     int    row, col;
  16.     Rect    dot;
  17.     
  18.     PenSize(1, 1);
  19.     /* Draw the board */
  20.     for (row = 0; row <= BOARDSIZE; ++row) {
  21.         MoveTo(SCALE*row + SCALE/2, SCALE/2);
  22.         LineTo(SCALE*row + SCALE/2, BOARDSIZE*SCALE + SCALE/2);
  23.         MoveTo(SCALE/2            , SCALE*row + SCALE/2);
  24.         LineTo(BOARDSIZE*SCALE + SCALE/2, SCALE*row + SCALE/2);
  25.     }
  26.  
  27.     /* Draw the dots at the corners of the center region */
  28.     for (row = 2; row < BOARDSIZE; row += 4)
  29.         for (col = 2; col < BOARDSIZE; col += 4) {
  30.             dot.top = dot.bottom = SCALE*row + SCALE/2;
  31.             dot.left = dot.right = SCALE*col + SCALE/2;
  32.             dot.top -= 3;
  33.             dot.left -= 3;
  34.             dot.bottom += 4;
  35.             dot.right += 4;
  36.             PaintOval(&dot);
  37.         }
  38.  
  39.     /* Draw the stones in their current positions */
  40.     for (row = 1; row <= BOARDSIZE; ++row)
  41.         for (col = 1; col <= BOARDSIZE; ++col) {
  42.         dot.top        = SCALE*(row) - SCALE/2 + 1;
  43.         dot.left    = SCALE*(col) - SCALE/2 + 1;
  44.         dot.bottom    = SCALE*(row) + SCALE/2;
  45.         dot.right    = SCALE*(col) + SCALE/2;
  46.         switch (GameBoard[row][col] & stoneColor) {
  47.         case stoneWhite:
  48.             FrameOval(&dot);
  49.             break;
  50.         case stoneBlack:
  51.             PaintOval(&dot);
  52.             break;
  53.         }
  54.         }
  55. }
  56.